home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 333_02 / p001.awk < prev    next >
Text File  |  1989-04-21  |  99b  |  5 lines

  1.  
  2. # Print the name and pay of employees in the 'emp.dat' file
  3.  
  4. $3 > 0        { print $1, $2 * $3 }
  5.